When Audits Fail From Pre-Auth SSRF to RCE in TRUfusion Ente...#1902
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
When Audits Fail From Pre-Auth SSRF to RCE in TRUfusion Ente...#1902carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.rcesecurity.com/2026/02/when-audits-fail-from-pre-auth-ssrf-to-rce-in-trufusion-enterprise/ Content Categories: Based on the analysis, this content was categorized under "Pentesting Web -> SSRF (Server Side Request Forgery) (add a subsection on reverse-proxy/absolute-URL request-line SSRF / unintended forward proxy) and/or Pentesting Web -> File Upload / Path traversal -> Arbitrary file write to RCE (JSP/Tomcat webroot placement); optionally cross-link from HTTP Request Smuggling/Desync or Special HTTP headers/request-line quirks if a relevant page exists". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
The post describes a pre-auth remote code execution (RCE) chain against Rocket Software TRUfusion Enterprise by combining: (1) a pre-auth SSRF / open forward proxy behavior caused by a reverse-proxy request-line parsing/misconfiguration that accepts absolute URLs in the HTTP request line (CVE-2025-32355), and (2) a path traversal leading to arbitrary file write in a localhost-bound Axis2 SOAP upload service (CVE-2025-59793), typically made practical by default admin credentials (admin:trubiquity...
🔧 Technical Details
Reverse-proxy SSRF via absolute-URL request line: If a reverse proxy accepts absolute URLs in the HTTP request line (e.g.,
GET http://host/path HTTP/1.1) and uses that value to route/fetch, it can become an unauthenticated forward proxy. This yields full-read SSRF (the response is returned) and can reach internal and evenlocalhost-bound services.SOAP upload path traversal to arbitrary file write: Upload APIs that accept a destination directory parameter (e.g.,
jobDirectory) must block traversal sequences like../. If not, combining attacker-controlled directory + file name (e.g.,archiveName) + content (often base64, e.g.,dataHandler) can produce an arbitrary file write primitive.File-write to RCE via webroot placement: If the target executes files based on location/extension (e.g., JSP under Tomcat
webapps), writing a malicious.jspinto a ser...🤖 Agent Actions
Summary:
uploadFiletraversal to arbitrary JSP write under Tomcat webapps (with default creds and localhost exposure considerations) in the file upload page, providing a concise exploitation template.Testing:
Files Modified:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.